Hi,
I want to know, how to get checked changed value from datagridview checkbox cell?
Thanks in advance.
DataGridViewCheckBoxColumn
3788
16-Dec-2011
Anonymous User
17-Dec-2011you can use the following code to get the checked changed value from the datagridview checkbox cell:
bool result = Convert.ToBoolean(datagridView1.Rows[r].Cells[c].EditedFormattedValue);
I think this will help you.